crypto/tls.clientHandshakeStateTLS13.transcript (field)
28 uses
crypto/tls (current package)
handshake_client_tls13.go#L34: transcript hash.Hash
handshake_client_tls13.go#L64: hs.transcript = hs.suite.hash.New()
handshake_client_tls13.go#L66: if err := transcriptMsg(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L79: if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
handshake_client_tls13.go#L195: chHash := hs.transcript.Sum(nil)
handshake_client_tls13.go#L196: hs.transcript.Reset()
handshake_client_tls13.go#L197: hs.transcript.Write([]byte{typeMessageHash, 0, 0, uint8(len(chHash))})
handshake_client_tls13.go#L198: hs.transcript.Write(chHash)
handshake_client_tls13.go#L199: if err := transcriptMsg(hs.serverHello, hs.transcript); err != nil {
handshake_client_tls13.go#L290: if _, err := hs.c.writeHandshakeRecord(hs.hello, hs.transcript); err != nil {
handshake_client_tls13.go#L395: clientHandshakeTrafficLabel, hs.transcript)
handshake_client_tls13.go#L398: serverHandshakeTrafficLabel, hs.transcript)
handshake_client_tls13.go#L429: msg, err := c.readHandshake(hs.transcript)
handshake_client_tls13.go#L503: msg, err := c.readHandshake(hs.transcript)
handshake_client_tls13.go#L512: msg, err = c.readHandshake(hs.transcript)
handshake_client_tls13.go#L562: signed := signedMessage(sigHash, serverSignatureContext, hs.transcript)
handshake_client_tls13.go#L569: if err := transcriptMsg(certVerify, hs.transcript); err != nil {
handshake_client_tls13.go#L593: expectedMAC := hs.suite.finishedHash(c.in.trafficSecret, hs.transcript)
handshake_client_tls13.go#L599: if err := transcriptMsg(finished, hs.transcript); err != nil {
handshake_client_tls13.go#L606: clientApplicationTrafficLabel, hs.transcript)
handshake_client_tls13.go#L608: serverApplicationTrafficLabel, hs.transcript)
handshake_client_tls13.go#L622: c.ekm = hs.suite.exportKeyingMaterial(hs.masterSecret, hs.transcript)
handshake_client_tls13.go#L650: if _, err := hs.c.writeHandshakeRecord(certMsg, hs.transcript); err != nil {
handshake_client_tls13.go#L675: signed := signedMessage(sigHash, clientSignatureContext, hs.transcript)
handshake_client_tls13.go#L687: if _, err := hs.c.writeHandshakeRecord(certVerifyMsg, hs.transcript); err != nil {
handshake_client_tls13.go#L698: verifyData: hs.suite.finishedHash(c.out.trafficSecret, hs.transcript),
handshake_client_tls13.go#L701: if _, err := hs.c.writeHandshakeRecord(finished, hs.transcript); err != nil {
handshake_client_tls13.go#L709: resumptionLabel, hs.transcript)
|
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |